This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
View Twisties on the Web - Thanks and my version of the solution... ~Vanessa Minjumitheroni 9.Jan.04 08:06 PM a Web browser Domino Designer 6.0.2 CF2All Platforms
Hi Stan,
Sometimes writing a solution is faster than trying find one in these pages... I was using the W3C HTML property "title" instead of the image ALT... I should have searched using the actual text too...
Here is the solution that I wrote and it is very similar to the one from the link you included in your response. But instead of removing the title text it replaces it with a generic expand or collapse message.
And thanks for the quick response, Stan!
---- begin code below ----
function hideTwistieText() {
var twistie = document.getElementsByTagName("img");
for (var x = 0; x < twistie.length; x++) {
if(twistie[x].src.indexOf("collapse.gif") > -1)
twistie[x].title = "Collapse this category.";
if(twistie[x].src.indexOf("expand.gif") > -1)
twistie[x].title = "Expand this category.";
}
}
--- end code above ----
Edited to replace "Roger" with "Stan" because I'm an idiot!